32. Neural Network Architecture
Neural Network Architecture
Ok, so we're ready to put these building blocks together, and build great Neural Networks! (Or Multi-Layer Perceptrons, however you prefer to call them.)
This first two videos will show us how to combine two perceptrons into a third, more complicated one.
Combinando modelos
29 Neural Network Architecture 2
SOLUTION:
w1: 3, w2: 5, b: -2.2Multiple layers
Now, not all neural networks look like the one above. They can be way more complicated! In particular, we can do the following things:
- Add more nodes to the input, hidden, and output layers.
- Add more layers.
We'll see the effects of these changes in the next video.
Layers
Multi-Class Classification
And here we elaborate a bit more into what can be done if our neural network needs to model data with more than one output.
Multiclass Classification
QUESTION:
How many nodes in the output layer would you require if you were trying to classify all the letters in the English alphabet?
SOLUTION:
These answers need to be solved by yourself, I believe you can do it